@charset "UTF-8";
/**
 * 关于我们页面样式
 * 采用现代化卡片设计和动态效果
 */
.about-page-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  padding: 80px 0;
  position: relative; }
  .about-page-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none; }

.header_wrapper {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 20px; }
  @media screen and (min-width: 1200px) {
    .header_wrapper {
      width: 75%;
      max-width: 1200px; } }
  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .header_wrapper {
      width: 85%; } }
  @media screen and (max-width: 767px) {
    .header_wrapper {
      width: 95%; } }
  .header_wrapper .descrip_block {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 60px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden; }
    @media screen and (max-width: 767px) {
      .header_wrapper .descrip_block {
        padding: 40px 30px;
        border-radius: 20px; } }
    .header_wrapper .descrip_block:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2); }
    .header_wrapper .descrip_block::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3); }
    .header_wrapper .descrip_block h2 {
      color: #2c3e50;
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 40px;
      text-align: center;
      position: relative;
      background: linear-gradient(135deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; }
      @media screen and (max-width: 767px) {
        .header_wrapper .descrip_block h2 {
          font-size: 2.2rem;
          margin-bottom: 30px; } }
      .header_wrapper .descrip_block h2::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #ff6b6b, #feca57);
        border-radius: 2px; }
    .header_wrapper .descrip_block .content_section h3 {
      color: #34495e;
      font-size: 1.6rem;
      font-weight: 700;
      margin: 40px 0 20px 0;
      padding: 15px 0 15px 25px;
      position: relative; }
      @media screen and (max-width: 767px) {
        .header_wrapper .descrip_block .content_section h3 {
          font-size: 1.3rem;
          margin: 30px 0 15px 0; } }
      .header_wrapper .descrip_block .content_section h3::before {
        content: '✨';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem; }
      .header_wrapper .descrip_block .content_section h3::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, rgba(102, 126, 234, 0.1), transparent);
        border-radius: 12px;
        z-index: -1; }
    .header_wrapper .descrip_block .content_section p.descrip_contents {
      color: #5a6c7d;
      line-height: 1.9;
      margin: 20px 0;
      padding: 0 20px;
      font-size: 1.1rem;
      text-align: left;
      position: relative; }
      @media screen and (max-width: 767px) {
        .header_wrapper .descrip_block .content_section p.descrip_contents {
          font-size: 1rem;
          padding: 0 15px;
          line-height: 1.8; } }
      .header_wrapper .descrip_block .content_section p.descrip_contents a {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
        position: relative;
        padding: 3px 6px;
        border-radius: 6px;
        transition: all 0.3s ease; }
        .header_wrapper .descrip_block .content_section p.descrip_contents a::before {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 0;
          height: 2px;
          background: linear-gradient(90deg, #667eea, #764ba2);
          transition: width 0.3s ease; }
        .header_wrapper .descrip_block .content_section p.descrip_contents a:hover {
          color: #764ba2;
          background: rgba(102, 126, 234, 0.1);
          transform: translateY(-2px); }
          .header_wrapper .descrip_block .content_section p.descrip_contents a:hover::before {
            width: 100%; }
    .header_wrapper .descrip_block .descrip_contents {
      color: #5a6c7d;
      line-height: 1.9;
      margin: 20px 0;
      font-size: 1.1rem;
      text-indent: 0;
      padding: 0 20px; }
  .header_wrapper .person_profile_ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px; }
    .header_wrapper .person_profile_ul .person_profile {
      list-style: none;
      position: relative; }
      .header_wrapper .person_profile_ul .person_profile a {
        text-decoration: none;
        display: block; }
        .header_wrapper .person_profile_ul .person_profile a .person_img {
          height: 220px;
          width: 220px;
          border-radius: 50%;
          transition: all 0.4s ease;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          border: 4px solid rgba(255, 255, 255, 0.8); }
          .header_wrapper .person_profile_ul .person_profile a .person_img:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
        .header_wrapper .person_profile_ul .person_profile a .person_text {
          color: #ffffff;
          position: absolute;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          background: rgba(0, 0, 0, 0.7);
          padding: 8px 16px;
          border-radius: 20px;
          font-size: 0.9rem;
          font-weight: 600;
          backdrop-filter: blur(10px); }

@media screen and (max-width: 768px) {
  .about-page-container {
    padding: 60px 0; }
  .header_wrapper .descrip_block {
    padding: 40px 25px; }
    .header_wrapper .descrip_block h2 {
      font-size: 2rem; }
    .header_wrapper .descrip_block .content_section h3 {
      font-size: 1.2rem;
      padding-left: 20px; }
    .header_wrapper .descrip_block .content_section p.descrip_contents {
      font-size: 0.95rem;
      padding: 0 10px; } }

@media screen and (max-width: 480px) {
  .about-page-container {
    padding: 40px 0; }
  .header_wrapper .descrip_block {
    padding: 30px 20px;
    border-radius: 15px; }
    .header_wrapper .descrip_block h2 {
      font-size: 1.8rem; }
    .header_wrapper .descrip_block .content_section h3 {
      font-size: 1.1rem;
      padding-left: 15px; }
    .header_wrapper .descrip_block .content_section p.descrip_contents {
      font-size: 0.9rem;
      padding: 0 5px; }
  .header_wrapper .person_profile_ul .person_profile a .person_img {
    height: 180px;
    width: 180px; } }

/*# sourceMappingURL=about-us.css.map */